html {
  width: 100%;
}
.header {
    position: sticky;
    z-index: 999;
    top: 0;
  }
  
  .header-wrap {
    display: flex;
    flex-direction: row;
    border: 4px solid black;
    background-color: white;
  }
  @media screen and (max-width: 768px) {
    .header-wrap {
      border: 2px solid black;
    }
  }
  .hero_after {
    background: linear-gradient(60deg, #420285, #08BDBD);
    padding: 40px 0;
    padding-top: 150px;
  }
footer {
     background: linear-gradient(60deg, #420285, #08BDBD);
    height: 330px;
    width: auto;
    position: relative;
    top: 80px;
  }
  .Copyright {
  font-size: 15px;
  padding-left: 35px;
  padding-top: 100px;
}
  @media screen and (max-width: 768px) {
    footer {
      height: auto;
      width: auto;
      position: relative;
      top: 20px;
      clip-path: none;
    }
  }
  .item-footer {
    display: flex;
    justify-content: left;
    padding-left: 2%;
    font-family: "Roboto";
    font-size: 25px;
    color: #2e7d32;
    padding-top: 15px;
  }
  a {
    color: #2e7d32;
    text-decoration: none;
  }
  a:hover {
    color: green;
    text-decoration: underline;
  }
  .item-footer2 {
    justify-content: right;
    padding-right: 2%;
    display: flex;
    font-size: 20px;
  }
  @media screen and (max-width: 768px) {
    .item-footer2 {
      justify-content: left;
      display: flex;
      font-size: 15px;
      padding-left: 8px;
    }
  }
  .item-footer3 {
    justify-content: right;
    display: flex;
    font-size: 20px;
    padding-top: 8px;
  }
  @media screen and (max-width: 768px) {
    .item-footer3 {
      justify-content: left;
      display: flex;
      font-size: 15px;
      padding-left: 8px;
    }
  }
.header-wrap{
    display: flex;
    flex-direction: row;
    border: 4px solid black;
    background-color: white;
}
.p-left{
    margin-left: 40px;
    font-size: 25px;
    margin-top: 80px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    justify-content: left;
}
.hero_after>h1 {
    text-align: center;
    font-family: 'Cinzel';
    color: white;
}
h2{
    font-size: 40px;
    text-align: center;
}
h2::first-letter{
    text-shadow: 4px 4px 4px;
    color: green;
    font-size: 3rem;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    background: #ececec;
}

.box-area{
    width: 930px;
}

.right-box{
    padding: 40px 30px 40px 40px;
}

::placeholder{
    font-size: 16px;
}

.rounded-4{
    border-radius: 20px;
}
.rounded-5{
    border-radius: 30px;
}
@media only screen and (max-width: 768px){

     .box-area{
        margin: 0 10px;

     }
     .left-box{
        height: 100px;
        overflow: hidden;
     }
     .right-box{
        padding: 20px;
     }

}


.captcha {
	background-color:#f9f9f9;
	border:2px solid #d3d3d3;
	border-radius:5px;
	color:#4c4a4b;
	display:flex;
  height: 150px;
  width: 50vh;
	justify-content:center;
	align-items:center;
 
}
.re-p {
  font-size: 14px;
  padding-left: 110px;
}
.captcha-img {
  margin-left: 110px;
  margin-top: 30px;
}
@media screen and (max-width: 500px) {
	.captcha {
		flex-direction:column;
	}
	.text {
		margin:.5em!important;
		text-align:center;
	}
	.logo {
		align-self: center!important;
	}
	.spinner {
		margin:2em .5em .5em .5em!important;
	}
}

.text {
	font-size: 12px;
	font-weight:500;
	margin-right:1em;
}
.spinner {
	position:relative;
	width:2em;
	height:2em;
	display:flex;
	margin:2em 1em;
	align-items:center;
	justify-content:center;
}
input[type="checkbox"] { position: absolute; opacity: 0; z-index: -1; }
input[type="checkbox"]+.checkmark {
	display:inline-block;
	width:2em;
	height:2em;
	background-color:#fcfcfc;
	border:2.5px solid #c3c3c3;
	border-radius:3px;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor: pointer;
}
input[type="checkbox"]+.checkmark span {
	content:'';
	position:relative;/*
	position:absolute;
	border-bottom:3px solid;
	border-right:3px solid;
	border-color:#029f56;*/
	margin-top:-3px;
	transform:rotate(45deg);
	width:.75em;
	height:1.2em;
	opacity:0;
}
input[type="checkbox"]+.checkmark>span:after {
	content:'';
	position:absolute;
	display:block;
	height:3px;
	bottom:0;left:0;
	background-color:#029f56;
}
input[type="checkbox"]+.checkmark>span:before {
	content:'';
	position:absolute;
	display:block;
	width:3px;
	bottom:0;right:0;
	background-color:#029f56;
}
input[type="checkbox"]:checked+.checkmark { 
	animation:2s spin forwards;
}
input[type="checkbox"]:checked+.checkmark>span { 
	animation:1s fadein 1.9s forwards;
}
input[type="checkbox"]:checked+.checkmark>span:after {animation:.3s bottomslide 2s forwards;}
input[type="checkbox"]:checked+.checkmark>span:before {animation:.5s rightslide 2.2s forwards;}
@keyframes fadein {
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes bottomslide {
	0% {width:0;}
	100% {width:100%;}
}
@keyframes rightslide {
	0% {height:0;}
	100% {height:100%;}
}
.logo {
	display:flex;
	flex-direction:column;
	align-items:center;
	height:100%;
	align-self:flex-end;
	margin:0.5em 1em;
}
.logo img {
	height:2em;
	width:2em;
}
.logo p {
	color:#9d9ba7;
	margin:0;
	font-size:1em;
	font-weight:700;
	margin:.4em 0 .2em 0;
}
.logo small {
	color:#9d9ba7;
	margin:0;
	font-size:.8em;
}
@keyframes spin {
	10% {
		width:0;
		height:0;
		border-width:6px;
	}
	30% {
		width:0;
		height:0;
		border-radius:50%;
		border-width:1em;
		transform: rotate(0deg);
		border-color:rgb(199,218,245);
	}
	50% {
		width:2em;
		height:2em;
		border-radius:50%;
		border-width:4px;
		border-color:rgb(199,218,245);
		border-right-color:rgb(89,152,239);
	}
	70% {
		border-width:4px;
		border-color:rgb(199,218,245);
		border-right-color:rgb(89,152,239);
	}
	90% {
		border-width:4px;
	}
	100% {
		width:2em;
		height:2em;
		border-radius:50%;
		transform: rotate(720deg);
		border-color:transparent;
	}
}
::selection {
	background-color:transparent;
	color:teal;
}
::-moz-selection {
	background-color:transparent;
	color:teal;
}
#creButton {
  margin-top: 30px;
}

   .cookie-consent {
  z-index: 99;
  position: fixed;
  max-width: 22rem;
  left: 6.5rem;
  bottom: 25px;
}


.cookie-consent .cookie-button {
  transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(0) rotate(-200deg);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-color: #ddaa65;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCA2MCI+PGRlZnM+PHN0eWxlPi5ie2ZpbGw6Izg0M308L3N0eWxlPjwvZGVmcz48Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSIzMCIgZmlsbD0iI2RkYWE2NSIgR29vZ2w9InRydWUiLz48Y2lyY2xlIGNsYXNzPSJiIiBjeD0iMTUuNSIgY3k9IjIxLjUiIHI9IjMuNSIvPjxjaXJjbGUgY2xhc3M9ImIiIGN4PSIzNC41IiBjeT0iMTIuNSIgcj0iMy41Ii8+PGNpcmNsZSBjbGFzcz0iYiIgY3g9IjIwLjUiIGN5PSI0NS41IiByPSIzLjUiLz48Y2lyY2xlIGNsYXNzPSJiIiBjeD0iMzcuNSIgY3k9IjUzLjUiIHI9IjMuNSIvPjxjaXJjbGUgY2xhc3M9ImIiIGN4PSI0OC41IiBjeT0iMzguNSIgcj0iMy41Ii8+PGNpcmNsZSBjbGFzcz0iYiIgY3g9IjM0IiBjeT0iMzMiIHI9IjYiLz48L3N2Zz4=");
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  left: 25px;
  height: 60px;
  width: 60px;
}


.cookie-consent .cookie-popin {
  z-index: 99;
  position: relative;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem 1.75rem;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}


.cookie-consent .cookie-popin::before {
  content: "";
  height: 2.4rem;
  width: 1.4rem;
  left: 0;
  bottom: 0.7rem;
  position: absolute;
}


.cookie-consent .cookie-popin .title {
  font-weight: 900;
  font-size: 1.4rem;
  color: #333;
}


.cookie-consent .cookie-popin .description {
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  color: #999;
}
.cookie-consent .cookie-popin .description a {
  color: #52bab3;
}


.cookie-consent .cookie-popin .user-choice {
  position: relative;
}


.cookie-consent .cookie-popin .user-choice::after {
  content: "";
  z-index: -1;
  position: absolute;
  height: 1.3rem;
  width: 1.3rem;
  background: #fff;
  border-top-right-radius: 0.2rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
  left: -0.4rem;
  margin-top: 1rem;
}


.cookie-consent .cookie-popin .user-choice .auth-button {
  user-select: none;
  text-align: center;
  text-transform: uppercase;
  background-color: #292e49;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0.2rem;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 0.18rem 0.3rem 0.05rem rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
}


.cookie-consent .cookie-popin .user-choice .auth-button-light {
  background-color: #fff;
  color: #292e49;
}


.cookie-consent.-deploy .cookie-button {
  transform: scale(1) rotate(0);
}
.cookie-consent.-deploy .cookie-popin {
  transform: scale(1);
}
